home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Commodities / BlocNotes / Note2WB.rexx < prev    next >
OS/2 REXX Batch file  |  1996-09-26  |  284b  |  18 lines

  1. /* Move note to WB screen*/
  2.  
  3. address 'blocnotes.rexx'
  4. options results
  5.  
  6. /*Get the id of the note*/
  7.  
  8. parse arg id .
  9.  
  10. ISANOTE id
  11. if result then do     /* Check if the id is valid*/
  12.    SAVE id
  13.    FIXEDSCREEN id SCREEN 'Workbench'
  14.    HIDE id
  15.    SHOW id
  16.    FIXEDSCREEN id OFF
  17.    SAVE id
  18. end